home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
pascal
/
tegl6b.zip
/
INTROPAK.EXE
/
lha
/
TWHELLO.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-04-06
|
392b
|
14 lines
{-- simplest program using high level windows }
USES teglmain, twcommon, twkernel;
VAR
wf : WinFramePtr;
BEGIN
twEasyStart; {-- simple startup }
twInit(wf,100,100,400,250); {-- creates & initializes }
twSetHeader(wf,'Hello World'); {-- set up individual items }
twDrawWindowFrame(wf); {-- draw it the first time }
TeglSupervisor;
END.